'Declaration
Public Function New( _ ByVal category As String, _ ByVal operationName As String, _ ByVal startMessage As String, _ ByVal endMessage As String, _ ByVal ParamArray args() As Object _ )
public OperationMetric( string category, string operationName, string startMessage, string endMessage, params object[] args )
Parameters
- category
- The category to use for the metric
- operationName
- The name of the operation for tracking purposes
- startMessage
- A trace message to add at the start of the operation. Any args provided will be inserted.
- endMessage
- A trace message to add at the end of the operation. Any args provided will be inserted.
- args
- A variable number of arguments to insert into the start and end messages